home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / elv18src.zip / vmsbuild.com < prev    next >
Text File  |  1994-01-28  |  2KB  |  52 lines

  1. $ ! Command file to build ELVIS on a VMS machine.
  2. $ ! To use the debugger, change the line below to read debug = 1
  3. $ debug = 0
  4. $ define sys sys$library   ! To resolve #include <sys/types.h> etc.
  5. $ if debug .ne. 1 then goto start
  6. $ debstr := /debug
  7. $ optstr := /noopt
  8. $ start:
  9. $ defines := /define=NO_ERRLIST
  10. $ set nocontrol=y
  11. $ On Error Then Goto The_Exit
  12. $      cc  'defines''optstr''debstr' blk.c
  13. $      cc  'defines''optstr''debstr' cmd1.c
  14. $      cc  'defines''optstr''debstr' cmd2.c
  15. $      cc  'defines''optstr''debstr' ctype.c
  16. $      cc  'defines''optstr''debstr' curses.c
  17. $      cc  'defines''optstr''debstr' cut.c
  18. $      cc  'defines''optstr''debstr' ex.c
  19. $      cc  'defines''optstr''debstr' input.c
  20. $      cc  'defines''optstr''debstr' main.c
  21. $      cc  'defines''optstr''debstr' misc.c
  22. $      cc  'defines''optstr''debstr' modify.c
  23. $      cc  'defines''optstr''debstr' move1.c
  24. $      cc  'defines''optstr''debstr' move2.c
  25. $      cc  'defines''optstr''debstr' move3.c
  26. $      cc  'defines''optstr''debstr' move4.c
  27. $      cc  'defines''optstr''debstr' move5.c
  28. $      cc  'defines''optstr''debstr' opts.c
  29. $      cc  'defines''optstr''debstr' recycle.c
  30. $      cc  'defines''optstr''debstr' redraw.c
  31. $      cc  'defines''optstr''debstr' regexp.c
  32. $      cc  'defines''optstr''debstr' regsub.c
  33. $      cc  'defines''optstr''debstr' system.c
  34. $      cc  'defines''optstr''debstr' tio.c
  35. $      cc  'defines''optstr''debstr' tmp.c
  36. $      cc  'defines''optstr''debstr' vars.c
  37. $      cc  'defines''optstr''debstr' vcmd.c
  38. $      cc  'defines''optstr''debstr' vi.c
  39. $      cc  'defines''optstr''debstr' tinytcap.c
  40. $      cc  'defines''optstr''debstr' vmsio.c
  41. $ link/exe=elvis.exe main,vmslink.opt/opt/nomap  'debstr'
  42. $      cc  'debstr' ctags.c
  43. $ link ctags,sys$input/opt 'debstr'
  44. sys$share:vaxcrtl.exe/share
  45. $      cc  'debstr' fmt.c
  46. $ link fmt,sys$input/opt 'debstr'
  47. sys$share:vaxcrtl.exe/share
  48. $      cc  'debstr' ref.c
  49. $ link ref,sys$input/opt 'debstr'
  50. sys$share:vaxcrtl.exe/share
  51. $ The_Exit:
  52.